home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / emacs.lha / emacs-19.16 / lisp / yow.el < prev    next >
Lisp/Scheme  |  1993-06-09  |  2KB  |  78 lines

  1. ;;; yow.el --- quote random zippyisms
  2.  
  3. ;; Copyright (C) 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: games
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; Important pinheadery for GNU Emacs.
  27. ;;
  28. ;; See cookie1.el for implementation.  Note --- the `n' argument of yow
  29. ;; from the 18.xx implementation is no longer; we only support *random*
  30. ;; random access now.
  31.  
  32. ;;; Code:
  33.  
  34. (require 'cookie1)
  35.  
  36. (defvar yow-file (concat data-directory "yow.lines")
  37.    "Pertinent pinhead phrases.")
  38.  
  39. ;;;###autoload
  40. (defun yow (&optional interactive)
  41.   "Return or display a random Zippy quotation."
  42.   (interactive "p")
  43.   (let ((yow (cookie
  44.           yow-file "Am I CONSING yet?..." "I have SEEN the CONSING!!")))
  45.     (cond ((not interactive)
  46.        yow)
  47.       ((not (string-match "\n" yow))
  48.        (delete-windows-on (get-buffer-create "*Help*"))
  49.        (message "%s" yow))
  50.       (t
  51.        (message "Yow!")
  52.        (with-output-to-temp-buffer "*Help*"
  53.          (princ yow))))))
  54.  
  55.  
  56. ; Yowza!! Feed zippy quotes to the doctor. Watch results.
  57. ; fun, fun, fun. Entertainment for hours...
  58. ;
  59. ; written by Kayvan Aghaiepour
  60.  
  61. ;;;###autoload
  62. (defun psychoanalyze-pinhead ()
  63.   "Zippy goes to the analyst."
  64.   (interactive)
  65.   (doctor)                ; start the psychotherapy
  66.   (message "")
  67.   (switch-to-buffer "*doctor*")
  68.   (sit-for 0)
  69.   (while (not (input-pending-p))
  70.     (insert-string (yow))
  71.     (sit-for 0)
  72.     (doctor-ret-or-read 1)
  73.     (doctor-ret-or-read 1)))
  74.  
  75. (provide 'yow)
  76.  
  77. ;;; yow.el ends here
  78.